home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 4 / The Arsenal Files 4 (Arsenal Computer).ISO / casm / au116-as.exe / IBMDOS / LTOA.CPP < prev    next >
C/C++ Source or Header  |  1993-12-05  |  263b  |  11 lines

  1. #include "..\au.hpp"
  2. /********************************************************************/
  3. /* Do not call this function more than once in any given expression */
  4.  
  5. char *my_ltoa(long value)
  6. {
  7.     static char string[11];
  8.     return ltoa(value, string, 10);
  9. }
  10.  
  11.